home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / fixptlib / fp_go_option_proc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-18  |  326 b   |  20 lines

  1. /* 
  2. ### procedure for selecting an option for picking an initial starting point
  3. of periodic orbit algorithm ###
  4. */
  5.  
  6. #include <suntool/sunview.h>
  7. #include <suntool/canvas.h>
  8.  
  9. void
  10. fp_go_option_proc(canvas,value,event)
  11. Canvas canvas;
  12. int value;
  13. Event *event;
  14. {
  15.         extern int fp_go_option;
  16.  
  17.         fp_go_option = value;
  18. }
  19.  
  20.